home *** CD-ROM | disk | FTP | other *** search
- /*
- File: ShimSerialStub.h
-
- Contains: Definitions for the serial .in & .out drivers
-
- Version: xxx put version here xxx
-
- Copyright: © 1996, 1998 by Apple Computer, Inc., all rights reserved.
-
-
- */
-
- #ifndef _APPLE_PCCARDSERIALSTUB_
- #define _APPLE_PCCARDSERIALSTUB_
-
- //
- // macros simply convert an I/O reference number into
- // a unit table entry number.
- //
- #define RefnumToUnit(refnum) ( -(refnum+1) )
- #define UnitToRefnum(unit) ( -(unit + 1) )
-
-
- //
- // USB serial driver names -- we hard code 'em
- // here as we don't want to bother with resources nor
- // with localization issues... and in any case, once
- // this is standard it ain't gonna change, right?
- //
-
- #define kDrvrInName "\p.UIn" // the default input driver name
- #define kDrvrOutName "\p.UOut" // the default output driver name
-
-
-
-
-
- #endif
-